home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 1 (Walnut Creek)
/
Aminet - June 1993 [Walnut Creek].iso
/
usenet
/
sources
/
volume90
/
examples
/
mrarpfil
/
part01
/
functions.diff
next >
Wrap
Text File
|
1990-06-03
|
1KB
|
36 lines
122c122
< long Write(BPTR file, char *buffer, long length);
---
> long Write(BPTR file, const char *buffer, long length);
131,135c131,135
< long Examine(BPTR lock, BPTR fileInfoBlock);
< long ExNext(BPTR lock, BPTR fileInfoBlock);
< long Info(BPTR lock, struct InfoData *parameterBlock);
< BPTR CreateDir(const char *name);
< BPTR CurrentDir(struct FileLock *lock);
---
> long Examine(BPTR lock, struct FileInfoBlock *fileInfoBlock);
> long ExNext(BPTR lock, struct FileInfoBlock *fileInfoBlock);
> long Info(BPTR lock, struct InfoData *parameterBlock);
> BPTR CreateDir(const char *name);
> BPTR CurrentDir(BPTR lock);
149,150c149,151
< struct FileLock * ParentDir(struct FileLock *lock);
< long IsInteractive(struct FileHandle *file);
---
> BPTR ParentDir(BPTR lock);
> /* 03/11/90 - Changed "FileHandle *file" to "BPTR file". */
> long IsInteractive(BPTR file);
233c234,235
< struct MiscResource * OpenResource(const char *resName, long version);
---
> /* 02/27/90 - OpenResource was defined with a bogus version parameter. */
> struct MiscResource * OpenResource(const char *resName);
254,255c256,258
< void CopyMem(char *source, char *dest, long size);
< void CopyMemQuick(char *source, char *dest, long size);
---
> /* 04/15/90(MRR) - Changed source parameters to "const char *". */
> void CopyMem(const char *source, char *dest, long size);
> void CopyMemQuick(const char *source, char *dest, long size);